I have a combox that I created in PHP that populates cities from a JSON file and is running 100%. I need to embed this combobox in a Magento page but I can not because I have several JS, Jquery, JSON and PHP files in it. I tried to insert via Static Block
<? echo $this->getLayout()->createBlock('cms/block')->setBlockId('nome_do_bloco')->toHtml(); ?>
I do not know the right way to make js and includes .php calls in Magento
The question is the best way to call this block within Magento?
Thank you!