// JavaScript Document
function Modelos(marca_id)
{
	 var html = $.ajax({
	  url: "/xml/modelos.php?marca_id=" + marca_id,
	  async: false
	 }).responseText;
	 
	 $("select#frm-modelo").empty()
	 
	 $("select#frm-modelo").html(html);
	 
	 return false;
}
